home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Vollversion / CamD / development / examples / vu / smakefile < prev    next >
Makefile  |  2000-05-15  |  369b  |  15 lines

  1. # =========================================================================
  2. # Makefile for VU using SAS C 6.1
  3. # =========================================================================
  4.  
  5. .c.o:
  6.     SC $*.c opt optsize nostdio nodebug
  7.  
  8. MAINOBJS    = vu.o images.o
  9.  
  10. OBJS        = $(MAINOBJS)
  11.  
  12. vu: $(OBJS)
  13.         SLINK lib:c.o $(OBJS) noicons library lib:sc.lib lib:amiga.lib to vu
  14.     
  15.